home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / univspl / fftmain.h < prev    next >
C/C++ Source or Header  |  1999-02-02  |  593b  |  25 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef fftmainH
  3. #define fftmainH
  4. //---------------------------------------------------------------------------
  5. #ifdef  __cplusplus
  6. extern "C" {
  7. #endif
  8.  
  9.    void cleanup(int exitcode);
  10.    float fftmain(long sample_rate, long fft_size, float freq);
  11.  
  12.  
  13. #ifdef  __cplusplus
  14. }
  15. #endif
  16.  
  17. extern float *sig,*fftsig;
  18. extern float *weights;
  19. extern float *fftreal;
  20. extern long num_samps,fsize;
  21. extern float bin_width;
  22.  
  23. //---------------------------------------------------------------------------
  24. #endif
  25.